youtube-chat-iframe.scss 621 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .yt-chat {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100%;
  5. background: var(--bg-page);
  6. position: relative;
  7. &__iframe {
  8. flex: 1;
  9. width: 100%;
  10. border: none;
  11. min-height: 0;
  12. background: var(--bg-page);
  13. }
  14. &__offline {
  15. flex: 1;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. gap: 8px;
  21. padding: 24px 16px;
  22. text-align: center;
  23. }
  24. &__offline-title {
  25. font-size: 0.95rem;
  26. font-weight: 600;
  27. color: var(--text-primary);
  28. margin: 0;
  29. }
  30. &__offline-desc {
  31. font-size: 0.8125rem;
  32. color: var(--text-muted);
  33. margin: 0;
  34. line-height: 1.5;
  35. }
  36. }